home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / FTP.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  356b  |  17 lines

  1. /* Definitions common to both FTP servers and clients */
  2.  
  3. #ifndef    ASCII_TYPE
  4.  
  5. #define    BLKSIZE    2048    /* Chunk size for file I/O */
  6.  
  7. #define    ASCII_TYPE    0
  8. #define    IMAGE_TYPE    1
  9. #define    LOGICAL_TYPE    2
  10.  
  11. /* In ftpsubr.c: */
  12. long sendfile __ARGS((FILE *fp,int s,int mode));
  13. long recvfile __ARGS((FILE *fp,int s,int mode));
  14.  
  15. #endif    /* ASCII_TYPE */
  16.  
  17.